home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ Win9x AutoLogon.xpl
< prev
next >
Wrap
Text File
|
2003-06-04
|
1KB
|
45 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH 1"="Network\Auto Login\Windows 98/ME"
"UIPATH 2"="Startup/Shutdown\Startup\Windows 9x/ME\29) Auto Login"
"NAME"="Settings"
"VERSION"="1.20"
"OSVERSION"="00101"
"LANGUAGE"="VBScript"
"TEXT 1"="Logon to Network"
"DESCRIPTION 1"="To disable logon requirement [allow anonymous user], check box."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
Sub Plugin_Initialize
i=RegReadValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
if i="00" then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon","00",3)
else
if RegValueExists("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")=true then
Call RegDeleteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
end if
end if
End Sub
Sub Plugin_Terminate
End Sub